home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue38 / Clinic / StopKeys.bpg < prev    next >
Text File  |  1998-07-07  |  968b  |  33 lines

  1. #------------------------------------------------------------------------------
  2. VERSION = BWS.01
  3. #------------------------------------------------------------------------------
  4. !ifndef ROOT
  5. ROOT = $(MAKEDIR)\..
  6. !endif
  7. #------------------------------------------------------------------------------
  8. MAKE = $(ROOT)\bin\make.exe -$(MAKEFLAGS) -f$**
  9. DCC = $(ROOT)\bin\dcc32.exe $**
  10. BRCC = $(ROOT)\bin\brcc32.exe $**
  11. #------------------------------------------------------------------------------
  12. PROJECTS = StopKey1.exe StopKey2.exe StopKey3.exe StopKey4.exe StopKey5.exe
  13. #------------------------------------------------------------------------------
  14. default: $(PROJECTS)
  15. #------------------------------------------------------------------------------
  16.  
  17. StopKey1.exe: StopKey1.dpr
  18.   $(DCC)
  19.  
  20. StopKey2.exe: StopKey2.dpr
  21.   $(DCC)
  22.  
  23. StopKey4.exe: StopKey4.dpr
  24.   $(DCC)
  25.  
  26. StopKey3.exe: StopKey3.dpr
  27.   $(DCC)
  28.  
  29. StopKey5.exe: StopKey5.dpr
  30.   $(DCC)
  31.  
  32.  
  33.